home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / CodeWarrior Lite / Metrowerks C⁄C++ Lite / Headers / ANSI Headers / iostream < prev    next >
Encoding:
Text File  |  1994-10-20  |  556 b   |  32 lines  |  [TEXT/MMCC]

  1. // iostream standard header
  2. #ifndef _IOSTREAM_
  3. #define _IOSTREAM_
  4. #include <fstream>
  5.  
  6. #if __MWERKS__
  7. #pragma options align=mac68k
  8. #endif
  9.  
  10.         // standard stream declarations
  11. extern istream cin;
  12. extern ostream cout;
  13. extern ostream cerr;
  14. extern ostream clog;
  15. static ios::Init _Ios_init;
  16.  
  17. #if __MWERKS__
  18. #pragma options align=reset
  19. #endif
  20.  
  21. #endif
  22.  
  23. /*
  24.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  25.  * Consult your license regarding permissions and restrictions.
  26.  */
  27.  
  28. /* Change log:
  29.  *94June04 PlumHall baseline
  30.  *94Oct07 Inserted MW changes.
  31.  */
  32.